home *** CD-ROM | disk | FTP | other *** search
/ Aminet 49 / Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso / Aminet / util / libs / ttrender.lha / ttrender-2.0 / Developer / include / clib / ttrender_protos.h
Encoding:
C/C++ Source or Header  |  2002-04-06  |  1.0 KB  |  39 lines

  1. #ifndef CLIB_TTRENDER_PROTOS_H
  2. #define CLIB_TTRENDER_PROTOS_H
  3.  
  4.  
  5. /*
  6. **    $VER: ttrender_protos.h 2.0 (05.04.2002)
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    Copyright © 2002 
  11. **    All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20. #ifndef  LIBRARIES_TTRENDER_H
  21. #include <libraries/ttrender.h>
  22. #endif
  23.  
  24. BOOL TT_PutStr(UBYTE * string);
  25. BOOL TT_PutUStr(UWORD * string);
  26. BOOL TT_SetFont(STRPTR name, UWORD size);
  27. BOOL TT_PutStrTagList(UBYTE * string, struct TagItem * taglist);
  28. BOOL TT_PutStrTags(UBYTE * string, Tag taglist, ...);
  29. BOOL TT_PutUStrTagList(UWORD * string, struct TagItem * taglist);
  30. BOOL TT_PutUStrTags(UWORD * string, Tag taglist, ...);
  31. ULONG TT_SetModesTagList(struct TagItem * taglist);
  32. ULONG TT_SetModesTags(Tag taglist, ...);
  33. ULONG TT_GetFontAttrsTagList(struct TagItem * taglist);
  34. ULONG TT_GetFontAttrsTags(Tag taglist, ...);
  35. ULONG TT_StrWidth(UBYTE * string);
  36. ULONG TT_UStrWidth(UWORD * string);
  37.  
  38. #endif    /*  CLIB_TTRENDER_PROTOS_H  */
  39.